Skip to content

Commit ece718f

Browse files
committed
chore: vite react ts config
1 parent 7acd951 commit ece718f

16 files changed

+1027
-3984
lines changed

.env.development

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
TEST=development
1+
VITE_TEST=development

.env.production

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
TEST=production
1+
VITE_TEST=production

README.md

+46-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,53 @@
11
# My React Boilerplate
22

3-
## 현재 설정 내역
3+
## Dependencies
44

5-
- react
6-
- redux
7-
- styled component
8-
- axios
9-
- babel
10-
- dotenv
11-
- webpack + esbuild-loader
5+
- React
6+
- Vite
7+
- Typescript
8+
- eslint
9+
- Prettier
1210

13-
## 사용 방법
11+
## How to use
1412

1513
```
16-
git clone https://github.com/choisohyun/my-react-boilerplate.git
17-
npm install
18-
npm start
19-
npm run build
14+
gh repo clone choisohyun/react-vite-ts-boilerplate
15+
yarn install
16+
yarn dev
17+
yarn prod
2018
```
19+
20+
- fast dev server
21+
22+
```bash
23+
$ yarn dev
24+
yarn run v1.22.17
25+
$ vite
26+
16:58:10
27+
vite v2.8.6 dev server running at:
28+
29+
> Local: http://localhost:3000/ 16:58:10
30+
> Network: use --host to expose 16:58:10
31+
16:58:10
32+
ready in 776ms.
33+
```
34+
35+
- fast build speed
36+
37+
```bash
38+
$ yarn prod
39+
yarn run v1.22.17
40+
$ vite build
41+
vite v2.8.6 building for production... 17:01:48
42+
✓ 1 modules transformed. 17:01:48
43+
transforming (17) node_modules/@babel/runtime/helpers/esm/extends.js
44+
WARN Generated an empty chunk: "vendor" 17:01:48
45+
46+
47+
WARN Generated an empty chunk: "index" 17:01:48
48+
49+
dist/public/index.html 0.47 KiB 17:01:48
50+
dist/assets/vendor.e3bb175a.js 0.00 KiB / gzip: 0.02 KiB 17:01:48
51+
✨ Done in 1.61s.
52+
```
53+

package.json

+16-37
Original file line numberDiff line numberDiff line change
@@ -3,64 +3,43 @@
33
"version": "1.0.41",
44
"license": "MIT",
55
"scripts": {
6-
"start": "webpack-dev-server --env=dev",
7-
"build": "rm -rf dist/ && webpack --env=prod"
6+
"dev": "vite",
7+
"prod": "vite build"
88
},
99
"dependencies": {
10-
"axios": "^0.21.2",
1110
"react": "^17.0.2",
1211
"react-dom": "^17.0.2",
13-
"react-redux": "^7.2.0",
14-
"react-router-dom": "^6.2.1",
15-
"redux": "^4.0.5",
16-
"redux-actions": "^2.6.5",
17-
"redux-thunk": "^2.3.0",
18-
"styled-components": "^5.1.1",
19-
"styled-reset": "^4.1.5"
12+
"react-router-dom": "^6.2.1"
2013
},
2114
"devDependencies": {
22-
"@babel/plugin-transform-runtime": "7.16.4",
23-
"@babel/preset-env": "^7.16.4",
24-
"@babel/preset-react": "7.16.0",
25-
"@babel/preset-typescript": "7.16.0",
26-
"@types/dotenv-webpack": "^7.0.3",
15+
"@rollup/plugin-alias": "^3.1.9",
2716
"@types/react": "17.0.35",
2817
"@types/react-dom": "17.0.11",
2918
"@typescript-eslint/eslint-plugin": "5.4.0",
3019
"@typescript-eslint/parser": "5.4.0",
20+
"@vitejs/plugin-react": "^1.2.0",
21+
"@vitejs/plugin-react-refresh": "^1.3.6",
22+
"autoprefixer": "^10.4.2",
3123
"babel-eslint": "10.1.0",
3224
"babel-polyfill": "^6.26.0",
33-
"clean-webpack-plugin": "^4.0.0",
3425
"core-js": "^3.19.1",
35-
"css-loader": "^6.5.1",
36-
"dotenv-webpack": "^7.0.3",
37-
"esbuild-loader": "^2.16.0",
26+
"cssnano": "^5.1.1",
3827
"eslint": "^7.28.0",
3928
"eslint-config-prettier": "^8.3.0",
4029
"eslint-plugin-prettier": "^4.0.0",
41-
"eslint-webpack-plugin": "3.1.1",
42-
"file-loader": "^6.2.0",
43-
"fork-ts-checker-webpack-plugin": "6.5.0",
44-
"fs": "0.0.1-security",
45-
"html-webpack-plugin": "^5.5.0",
4630
"husky": "4",
4731
"lint-staged": "^12.0.3",
48-
"mini-css-extract-plugin": "2.4.5",
49-
"optimize-css-assets-webpack-plugin": "^6.0.1",
32+
"postcss": "^8.4.8",
33+
"postcss-import": "^14.0.2",
34+
"postcss-load-config": "^3.1.3",
35+
"postcss-loader": "^6.2.1",
36+
"postcss-nested": "^5.0.6",
5037
"prettier": "^2.4.1",
51-
"react-helmet": "^6.1.0",
5238
"sass": "1.43.5",
53-
"sass-loader": "12.3.0",
54-
"style-loader": "3.3.1",
55-
"ts-jest": "27.0.7",
5639
"typescript": "^4.5.2",
57-
"url-loader": "4.1.1",
58-
"webpack": "^5.65.0",
59-
"webpack-bundle-analyzer": "^4.5.0",
60-
"webpack-cli": "^4.9.1",
61-
"webpack-dev-server": "^4.5.0",
62-
"webpack-manifest-plugin": "^4.0.2",
63-
"webpack-merge": "^5.8.0"
40+
"vite": "^2.8.6",
41+
"vite-plugin-html": "^3.1.0",
42+
"vite-tsconfig-paths": "^3.4.1"
6443
},
6544
"husky": {
6645
"hooks": {

public/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111

1212
<body>
1313
<div id="root"></div>
14+
<div id="mode"></div>
1415
</body>
1516
</html>

src/App.tsx

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
1-
import React, { Suspense } from 'react';
1+
import React from 'react';
22
import routes from '@/routes/index';
33
import { useRoutes } from 'react-router-dom';
44

55
const App = () => {
66
const element = useRoutes(routes);
7-
console.log(element);
87

9-
return (
10-
<>
11-
<Suspense fallback={<div>Loading...</div>}>{element}</Suspense>
12-
</>
13-
);
8+
return <>{element}</>;
149
};
1510

1611
export default App;

src/pages/main/index.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
import React from 'react';
22

33
const Main = () => {
4-
return <div>Main</div>;
4+
return (
5+
<>
6+
<h2>Hello World</h2>
7+
<p>{import.meta.env.VITE_TEST}</p>
8+
</>
9+
);
510
};
611

712
export default Main;

src/routes/index.tsx

+5-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,12 @@
1-
import React, { lazy } from 'react';
1+
import React from 'react';
22
import { RouteObject } from 'react-router-dom';
3-
4-
const getRouteConfig = (path: string, componentPath: string) => {
5-
return {
6-
path,
7-
component: getComponent(componentPath),
8-
};
9-
};
10-
11-
const getComponent = (componentPath: string) => {
12-
return lazy(() => import(/* webpackChunkName: "contents" */ `@/pages/${componentPath}`));
13-
};
14-
15-
const Main = getComponent('main');
3+
import Layout from '@/pages/layout';
4+
import Main from '@/pages/main';
165

176
export default [
187
{
19-
...getRouteConfig('/', 'layout'),
8+
path: '/',
9+
element: <Layout />,
2010
children: [{ index: true, element: <Main /> }],
2111
},
2212
] as RouteObject[];

src/types/env.d.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
interface ImportMetaEnv {
2+
readonly VITE_TEST: string;
3+
}
4+
5+
interface ImportMeta {
6+
readonly env: ImportMetaEnv;
7+
}

src/types/vite-env.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/// <reference types="vite/client" />

vite.config.js

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
import { defineConfig, loadEnv } from 'vite';
2+
import react from '@vitejs/plugin-react';
3+
import tsconfigPaths from 'vite-tsconfig-paths';
4+
import { createHtmlPlugin } from 'vite-plugin-html';
5+
import path from 'path';
6+
7+
import { dependencies } from './package.json';
8+
function renderChunks(deps) {
9+
let chunks = {};
10+
Object.keys(deps).forEach(key => {
11+
if (['react', 'react-router-dom', 'react-dom'].includes(key)) return;
12+
chunks[key] = [key];
13+
});
14+
return chunks;
15+
}
16+
17+
function transformHtml(mode) {
18+
return {
19+
name: 'html-transform',
20+
transformIndexHtml(html) {
21+
const dev = `<script type="module">
22+
import RefreshRuntime from "http://localhost:3000/@react-refresh"
23+
RefreshRuntime.injectIntoGlobalHook(window)
24+
window.$RefreshReg$ = () => {}
25+
window.$RefreshSig$ = () => (type) => type
26+
window.__vite_plugin_react_preamble_installed__ = true
27+
</script>
28+
<script type="module" src="http://localhost:3000/@vite/client"></script>
29+
<script type="module" src="http://localhost:3000/src/index.tsx"></script>`;
30+
const prod = `<script type="module" src="/src/index.tsx"></script>`;
31+
32+
return html.replace('<div id="mode"></div>', mode === 'development' ? dev : prod);
33+
},
34+
};
35+
}
36+
37+
export default defineConfig(({ mode }) => {
38+
const env = loadEnv(mode, 'env');
39+
40+
return {
41+
server: { hmr: true },
42+
plugins: [
43+
react({
44+
include: ['**/*.tsx', '**/*.ts'],
45+
}),
46+
tsconfigPaths(),
47+
transformHtml(mode),
48+
createHtmlPlugin({
49+
minify: true,
50+
inject: {
51+
data: {
52+
...env,
53+
MODE: mode,
54+
},
55+
},
56+
template: 'public/index.html',
57+
}),
58+
],
59+
resolve: {
60+
alias: { '@': path.resolve(__dirname, 'src/') },
61+
},
62+
css: {
63+
preprocessorOptions: {
64+
scss: {
65+
additionalData: `@import "./src/assets/scss/style.scss";`,
66+
},
67+
},
68+
postcss: ctx => ({
69+
parser: ctx.parser ? 'sugarss' : false,
70+
map: ctx.env === 'development' ? ctx.map : false,
71+
plugins: {
72+
'postcss-import': {},
73+
'postcss-nested': {},
74+
cssnano: ctx.env === 'production' ? {} : false,
75+
autoprefixer: { overrideBrowserslist: ['defaults'] },
76+
},
77+
}),
78+
},
79+
build: {
80+
sourcemap: false,
81+
rollupOptions: {
82+
output: {
83+
manualChunks: {
84+
vendor: ['react', 'react-router-dom', 'react-dom'],
85+
...renderChunks(dependencies),
86+
},
87+
},
88+
},
89+
},
90+
};
91+
});

webpack.common.js

-69
This file was deleted.

webpack.config.js

-3
This file was deleted.

0 commit comments

Comments
 (0)