1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Move assets to assets/ root folder "as is"

This commit is contained in:
Yassine Guedidi 2024-02-24 23:54:36 +01:00
parent cd6f7b5e92
commit 0ce5570cec
40 changed files with 3 additions and 7 deletions

View file

@ -6,8 +6,8 @@ const projectDir = path.resolve(__dirname, '../../../');
module.exports = {
entry: {
material: path.join(projectDir, './app/Resources/static/themes/material/index.js'),
public: path.join(projectDir, './app/Resources/static/themes/_global/share.js'),
material: path.join(projectDir, './assets/material/index.js'),
public: path.join(projectDir, './assets/_global/share.js'),
},
output: {
filename: '[name].js',
@ -25,7 +25,7 @@ module.exports = {
configFile: 'stylelint.config.js',
failOnError: false,
quiet: false,
context: 'app/Resources/static/themes',
context: 'assets',
files: '**/*.scss',
}),
],