Tran Phong

Results 5 comments of Tran Phong

> Hey @TP-O thanks for your contrib again! There is no way you could do this without relying on JS to display the desktop or mobile version? (and instead do...

Install [@rollup/plugin-replace](https://www.npmjs.com/package/@rollup/plugin-replace), then modify `vite.config.content.ts`: ```ts export default defineConfig({ ... plugins: [ ...sharedConfig.plugins || [], replace({ values: { 'process.env.NODE_ENV': `"${env.NODE_ENV || 'production'}"`, }, }), ], }) ```