From 7c28fce70f114c742051cea4ee3f115544f8c1f8 Mon Sep 17 00:00:00 2001 From: Leandro Roberto Date: Sun, 13 Jan 2019 01:34:30 -0200 Subject: [PATCH] add nova entrada para gereciamento de temas --- sapl-frontend/src/theme/main.js | 0 sapl-frontend/vue.config.js | 7 +++++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 sapl-frontend/src/theme/main.js 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() + } }