1 Star 1 Fork 1

林钲凯/xplorer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 496 Bytes
一键复制 编辑 原始数据 按行查看 历史
林钲凯 提交于 2021-11-07 14:46 . feat: reimplement settings
const path = require('path');
module.exports = {
entry: './src/index.ts',
mode: 'development',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.svg/,
type: 'asset/inline',
},
{
test: /\.png$/,
type: 'asset/inline',
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js', '.svg', '.png'],
},
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'out/src'),
},
cache: false,
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/kimlimjustin/xplorer.git
git@gitee.com:kimlimjustin/xplorer.git
kimlimjustin
xplorer
xplorer
master

搜索帮助