提交 1d42ab7a 编写于 作者: fxy060608's avatar fxy060608

feat(nvue): support file-loader

上级 5a25e406
......@@ -108,6 +108,15 @@ if (process.env.NODE_ENV === 'development') {
// const excludeModuleReg = /node_modules(?!(\/|\\).*(weex).*)/
const rules = [{
test: /\.(png|jpg|gif|ttf|eot|woff|woff2)$/i,
use: [{
loader: 'file-loader',
options: {
publicPath: 'assets',
outputPath: 'assets'
}
}]
}, {
test: path.resolve(process.env.UNI_INPUT_DIR, 'pages.json'),
use: [{
loader: '@dcloudio/webpack-uni-pages-loader'
......@@ -208,7 +217,7 @@ if (process.env.UNI_USING_NATIVE || process.env.UNI_USING_V3_NATIVE) {
const array = [{
from: path.resolve(process.env.UNI_INPUT_DIR, 'static'),
to: 'static'
}]
}]
const androidPrivacyPath = path.resolve(process.env.UNI_INPUT_DIR, 'androidPrivacy.json')
if (fs.existsSync(androidPrivacyPath)) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册