We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f5b7e commit 745e5a1Copy full SHA for 745e5a1
webpack/webpack.common.js
@@ -67,11 +67,13 @@ module.exports = (options) => ({
67
{ from: './src/main/webapp/favicon.ico', to: 'favicon.ico' },
68
{ from: './src/main/webapp/manifest.webapp', to: 'manifest.webapp' },
69
// jhipster-needle-add-assets-to-webpack - JHipster will add/remove third-party resources in this array
70
- { from: './src/main/webapp/robots.txt', to: 'robots.txt' }
+ { from: './src/main/webapp/robots.txt', to: 'robots.txt' },
71
+ { from: './src/main/webapp/app/ngx-admin/assets', to: 'assets' }
72
]),
73
new webpack.ProvidePlugin({
74
$: "jquery",
- jQuery: "jquery"
75
+ jQuery: "jquery",
76
+ echarts: "echarts"
77
}),
78
new HtmlWebpackPlugin({
79
template: './src/main/webapp/index.html',
0 commit comments