mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-25 17:28:05 +00:00
4144e9ffd0
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
14 lines
324 B
JavaScript
14 lines
324 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
runtimeCompiler: true,
|
|
lintOnSave: true,
|
|
outputDir: path.resolve(__dirname, "../priv/static"),
|
|
chainWebpack: (config) => {
|
|
const svgRule = config.module.rule("svg");
|
|
|
|
svgRule.uses.clear();
|
|
|
|
svgRule.use("vue-svg-loader").loader("vue-svg-loader");
|
|
},
|
|
};
|