代码拉取完成,页面将自动刷新
// @ts-check
const PluginPostCSS = require('esbuild-plugin-postcss').default
const { publicPath } = require('./config.json')
const plugin = PluginPostCSS({
declaration: true,
lessOptions: {
globalVars: {
publicPath: `"${publicPath}"`,
},
},
})
/**
* @type { import('f2e-middle-esbuild').BuildOptions }
*/
let config = {
sourcemap: true,
external: [
'react',
'react-dom',
'react-dom/client',
'react-router-dom',
'antd-mobile',
'dexie',
'lodash',
'antd-mobile-icons',
'ahooks/es/utils/domTarget',
'ahooks/es/utils/rect',
'ahooks/es/utils',
'ahooks',
'spark-md5',
'@/utils/pinyin'
],
entryPoints: ['src/index.tsx'],
outfile: 'static/bundle.js',
target: 'chrome70',
jsxFactory: 'React.createElement',
bundle: true,
format: 'iife',
// plugins: [PluginPostCSS()],
plugins: plugin ? [ plugin ] : undefined,
loader: {
'.tsx': 'tsx',
'.ts': 'ts',
'.png': 'file',
'.jpg': 'file',
'.svg': 'dataurl',
'.json': 'json',
'.txt': 'text',
},
tsconfig: './tsconfig.json',
};
module.exports = config
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。