1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-14 01:24:19 +02: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

View File

@@ -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'
},