Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Switch
- Babel
- webpack
- SQL
- Go
- php
- Node
- phpredis
- python
- docker
- NCP
- Redis
- For
- Machine Learning
- 기초 수학
- rabbitmq
- nginx
- laravel
- AWS
- linux
- mariadb
- CentOS
- React
- 블레이드 템플릿
- Backbone.js
- nodejs
- deep learning
- fastapi
- javascript
- Redux
Archives
- Today
- Total
728x90
반응형
목록module (1)
개발일기

webpack.config.js 파일의 내용 const path = require("path"); const HtmlWebPackPlugin = require("html-webpack-plugin"); module.exports = { entry: "./src/", output: { path: path.resolve(__dirname, "build"), filename: "webpack_build.js", }, resolve: { modules: [path.join(__dirname, "src"), "node_modules"], alias: { react: path.join(__dirname, "node_modules", "react"), }, }, module: { rules: [ { test: /\...
Javascript
2021. 10. 3. 17:30
728x90
반응형