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
- SQL
- 블레이드 템플릿
- NCP
- docker
- CentOS
- phpredis
- AWS
- Switch
- fastapi
- Backbone.js
- python
- laravel
- webpack
- For
- Go
- javascript
- nodejs
- mariadb
- Redis
- Babel
- nginx
- React
- deep learning
- Node
- rabbitmq
- Redux
- php
- 기초 수학
- linux
- Machine Learning
Archives
- Today
- Total
728x90
반응형
목록Resolve (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
반응형