- Added `devServer` configuration for H5 platform to allow file system access. - Updated platform type to include 'h5' in the factory. - Adjusted icon paths in app configuration for consistency. - Cleaned up code formatting and removed deprecated Redux store documentation.
14 lines
197 B
TypeScript
14 lines
197 B
TypeScript
import type { UserConfigExport } from "@tarojs/cli"
|
|
|
|
export default {
|
|
|
|
mini: {},
|
|
h5: {
|
|
devServer: {
|
|
fs: {
|
|
allow: ['..']
|
|
}
|
|
}
|
|
}
|
|
} satisfies UserConfigExport<'vite'>
|