2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-15 11:59:39 +03:00

Docs: change vite config path import in vite guide (#39418)

This commit is contained in:
Julien Déramond
2023-11-21 13:30:34 +01:00
committed by GitHub
parent 1a7ae00f52
commit 00d4639400
@@ -78,10 +78,10 @@ With dependencies installed and our project folder ready for us to start coding,
<!-- eslint-skip -->
```js
const path = require('path')
import { resolve } from 'path'
export default {
root: path.resolve(__dirname, 'src'),
root: resolve(__dirname, 'src'),
build: {
outDir: '../dist'
},