feat: sync micropython k210, nrf, robot and educore source configs

This commit is contained in:
yczpf2019
2026-01-24 16:19:05 +08:00
parent d29ca27d44
commit 1990bee9a1
528 changed files with 140330 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
const path = require("path");
const common = require("../../../webpack.common");
const { merge } = require("webpack-merge");
module.exports = merge(common, {
resolve: {
alias: {
'@mixly/python': path.resolve(__dirname, '../python'),
'@mixly/micropython': path.resolve(__dirname, '../micropython')
}
}
});