@_tc/template-core 0.0.1-bate.11 → 0.0.1-bate.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/bundler/utils.js +6 -0
- package/esm/bundler/utils.js +6 -0
- package/package.json +1 -1
package/cjs/bundler/utils.js
CHANGED
|
@@ -122,6 +122,12 @@ const VBuildFE = async (input) => {
|
|
|
122
122
|
emptyOutDir: true,
|
|
123
123
|
rollupOptions: { input },
|
|
124
124
|
},
|
|
125
|
+
resolve: {
|
|
126
|
+
alias: {
|
|
127
|
+
// 需要配置打包后的文件地址
|
|
128
|
+
"@tc/ui-react": path_1.default.resolve(__dirname, "../../fe/packages/ui/react/"),
|
|
129
|
+
},
|
|
130
|
+
},
|
|
125
131
|
});
|
|
126
132
|
};
|
|
127
133
|
exports.VBuildFE = VBuildFE;
|
package/esm/bundler/utils.js
CHANGED