moved frontend from monorepo

This commit is contained in:
2024-09-12 15:55:38 -04:00
parent 0e84e37a74
commit 3af14dee95
91 changed files with 5989 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
module.exports = function override(webpackConfig) {
webpackConfig.module.rules.push({
test: /\.mjs$/,
include: /node_modules/,
type: 'javascript/auto',
})
return webpackConfig
}