From bf17041af9c510a1a5d4704987313b86cd205cae Mon Sep 17 00:00:00 2001 From: yoyo930021 Date: Thu, 18 Aug 2022 22:48:21 +0800 Subject: [PATCH] fix(playground): node import lint --- playground/lib/vite.emitAssetsWithModule.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playground/lib/vite.emitAssetsWithModule.config.js b/playground/lib/vite.emitAssetsWithModule.config.js index 653101ec4555aa..bed670c538e2a8 100644 --- a/playground/lib/vite.emitAssetsWithModule.config.js +++ b/playground/lib/vite.emitAssetsWithModule.config.js @@ -1,5 +1,5 @@ -const fs = require('fs') -const path = require('path') +const fs = require('node:fs') +const path = require('node:path') /** * @type {import('vite').UserConfig}