diff --git a/sapl-frontend/src/theme/main.js b/sapl-frontend/src/theme/main.js new file mode 100644 index 000000000..e69de29bb diff --git a/sapl-frontend/vue.config.js b/sapl-frontend/vue.config.js index 904258ba6..9747e93b9 100644 --- a/sapl-frontend/vue.config.js +++ b/sapl-frontend/vue.config.js @@ -1,10 +1,8 @@ - const BundleTracker = require('webpack-bundle-tracker') module.exports = { publicPath: 'http://localhost:8080/', outputDir: './dist/', - chainWebpack: config => { @@ -34,5 +32,10 @@ module.exports = { .add('./src/hellow/main.js') .end() + // then add your own + config.entry('theme') + .add('./src/theme/main.js') + .end() + } }