mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 修改缓存等级
This commit is contained in:
parent
e106df121c
commit
f16579c5a1
@ -280,7 +280,6 @@ export default async function getConfig({ api, cwd, config, env, entry = {}, mod
|
||||
const memo = webpackConfig.toConfig();
|
||||
memo.infrastructureLogging = {
|
||||
...memo.infrastructureLogging,
|
||||
level: 'verbose',
|
||||
};
|
||||
memo.output = {
|
||||
...memo.output,
|
||||
|
@ -1,3 +1,4 @@
|
||||
import { defineComponent } from 'vue';
|
||||
import { RouterView } from '{{{ runtimePath }}}';
|
||||
|
||||
export default defineComponent(() => () => (<RouterView></RouterView>));
|
||||
|
@ -61,7 +61,9 @@ export default function (api) {
|
||||
const defaultContainerName = 'defaultContainer';
|
||||
api.writeTmpFile({
|
||||
path: `${defaultContainerName}.jsx`,
|
||||
content: readFileSync(join(__dirname, `./${defaultContainerName}.tpl`), 'utf-8'),
|
||||
content: Mustache.render(readFileSync(join(__dirname, `./${defaultContainerName}.tpl`), 'utf-8'), {
|
||||
runtimePath,
|
||||
}),
|
||||
});
|
||||
});
|
||||
}
|
||||
|
@ -5,7 +5,6 @@ export default {
|
||||
define: {
|
||||
__DEV__: false
|
||||
},
|
||||
publicPath: './',
|
||||
html: {
|
||||
title: '海贼王'
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user